home *** CD-ROM | disk | FTP | other *** search
/ The World's Largest Collection of Windows Software / The World's Largest Collection of Windows Software - Disc 2.iso / textproc / tlcspell / tlcabout.fo_ / tlcabout.fo
Text File  |  1993-12-04  |  4KB  |  145 lines

  1. VERSION 2.00
  2. Begin Form FrmAbout 
  3.    BackColor       =   &H00000000&
  4.    BorderStyle     =   3  'Fixed Double
  5.    Caption         =   "About TLC Spell Checker"
  6.    ClientHeight    =   2988
  7.    ClientLeft      =   1740
  8.    ClientTop       =   1464
  9.    ClientWidth     =   5904
  10.    ControlBox      =   0   'False
  11.    Height          =   3408
  12.    HelpContextID   =   300
  13.    Left            =   1692
  14.    LinkTopic       =   "Form2"
  15.    MaxButton       =   0   'False
  16.    MinButton       =   0   'False
  17.    ScaleHeight     =   2988
  18.    ScaleWidth      =   5904
  19.    Top             =   1092
  20.    Width           =   6000
  21.    Begin CommonDialog CmnDialog 
  22.       Left            =   288
  23.       Top             =   1512
  24.    End
  25.    Begin PictureBox Panel3D5 
  26.       BackColor       =   &H00C0C0C0&
  27.       Height          =   552
  28.       Left            =   -36
  29.       ScaleHeight     =   528
  30.       ScaleWidth      =   5904
  31.       TabIndex        =   2
  32.       Top             =   2412
  33.       Width           =   5928
  34.       Begin CommandButton Cmd 
  35.          Caption         =   "&To Use"
  36.          Height          =   372
  37.          HelpContextID   =   44
  38.          Index           =   2
  39.          Left            =   4140
  40.          TabIndex        =   5
  41.          Top             =   144
  42.          Width           =   1272
  43.       End
  44.       Begin CommandButton Cmd 
  45.          Caption         =   "&Register"
  46.          Default         =   -1  'True
  47.          Height          =   375
  48.          HelpContextID   =   44
  49.          Index           =   1
  50.          Left            =   2220
  51.          TabIndex        =   4
  52.          Top             =   120
  53.          Width           =   1515
  54.       End
  55.       Begin CommandButton Cmd 
  56.          Cancel          =   -1  'True
  57.          Caption         =   "&Ok"
  58.          Height          =   375
  59.          HelpContextID   =   44
  60.          Index           =   0
  61.          Left            =   480
  62.          TabIndex        =   3
  63.          Top             =   120
  64.          Width           =   1215
  65.       End
  66.    End
  67.    Begin PictureBox Panel3D2 
  68.       BackColor       =   &H00C0C0C0&
  69.       Height          =   1152
  70.       Left            =   0
  71.       ScaleHeight     =   1128
  72.       ScaleWidth      =   5868
  73.       TabIndex        =   0
  74.       Top             =   1224
  75.       Width           =   5892
  76.       Begin Label Label1 
  77.          Caption         =   "This is a shareware program.  It must be registered within 30 days of installation.  Click on Register for details."
  78.          Height          =   795
  79.          Left            =   1140
  80.          TabIndex        =   1
  81.          Top             =   180
  82.          Width           =   3855
  83.       End
  84.    End
  85.    Begin Label Label2 
  86.       Alignment       =   2  'Center
  87.       BackColor       =   &H00C0C0C0&
  88.       Caption         =   "E 408 Silver Pines, Colbert, WA 99005"
  89.       Height          =   372
  90.       Index           =   2
  91.       Left            =   0
  92.       TabIndex        =   7
  93.       Top             =   756
  94.       Width           =   5916
  95.    End
  96.    Begin Label Label2 
  97.       Alignment       =   2  'Center
  98.       BackColor       =   &H00C0C0C0&
  99.       Caption         =   "Software Engineering and Fabrication"
  100.       Height          =   372
  101.       Index           =   1
  102.       Left            =   0
  103.       TabIndex        =   8
  104.       Top             =   396
  105.       Width           =   5916
  106.    End
  107.    Begin Label Label2 
  108.       Alignment       =   2  'Center
  109.       BackColor       =   &H00C0C0C0&
  110.       Caption         =   "Copyright (C) 1993   -- All Rights Reserved"
  111.       Height          =   372
  112.       Index           =   0
  113.       Left            =   0
  114.       TabIndex        =   6
  115.       Top             =   0
  116.       Width           =   5916
  117.    End
  118. End
  119.  
  120. Option Explicit
  121.  
  122. Sub Cmd_Click (Index As Integer)
  123.   FrmAbout!CmnDialog.HelpFile = App.HelpFile
  124.   If Index = 1 Then
  125.      FrmAbout!CmnDialog.HelpContext = 101
  126.      FrmAbout!CmnDialog.HelpCommand = HELP_CONTEXT
  127.      FrmAbout!CmnDialog.Action = 6
  128.  
  129.   ElseIf Index = 2 Then
  130.      FrmAbout!CmnDialog.HelpContext = 0
  131.      FrmAbout!CmnDialog.HelpCommand = HELP_INDEX
  132.      FrmAbout!CmnDialog.Action = 6
  133.   Else
  134.      Unload Me
  135.   End If
  136. End Sub
  137.  
  138. Sub Cmd1_Click (Index As Integer)
  139. End Sub
  140.  
  141. Sub Form_Load ()
  142.    ' SetAbout
  143. End Sub
  144.  
  145.